*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --terra:   #2A7D4F;
  --terra-dk:#1C5C38;
  --terra-lt:#C2E8D2;
  --sage:    #52916E;
  --sage-lt: #DDF0E6;
  --cream:   #F2FAF5;
  --dark:    #162B1F;
  --mid:     #3D6B50;
  --light:   #E4F4EB;
  --white:   #FFFFFF;
  --radius:  14px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: var(--cream);
  line-height: 1.65;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 5vw;
  background: rgba(242,250,245,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(42,125,79,.15);
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.08); }

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--terra);
  text-decoration: none;
  font-weight: 600;
}
.nav-logo span { color: var(--dark); font-weight: 400; font-style: italic; }

.nav-crn {
  font-size: .72rem; font-weight: 600; letter-spacing: .08em;
  color: var(--mid); margin-left: 10px;
  padding: 3px 8px; border-radius: 50px;
  border: 1px solid rgba(42,125,79,.25);
  white-space: nowrap;
}

.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--mid); font-size: .9rem;
  font-weight: 500; transition: color .2s;
}
.nav-links a:hover { color: var(--terra); }

.nav-cta {
  background: var(--terra); color: #fff !important;
  padding: 10px 22px; border-radius: 50px;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--terra-dk) !important; color: #fff !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: var(--terra); border-radius: 2px; transition: .3s; }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 5vw 80px;
  gap: 60px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--light) 100%);
  position: relative;
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute; top: -120px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(42,125,79,.12) 0%, transparent 70%);
  pointer-events: none;
}
#hero::after {
  content: '';
  position: absolute; bottom: -100px; left: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(82,145,110,.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-text { position: relative; z-index: 1; }

.hero-badge {
  display: inline-block;
  background: var(--terra-lt); color: var(--terra-dk);
  font-size: .8rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 16px; border-radius: 50px;
  margin-bottom: 24px;
}

.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 20px;
}
.hero-text h1 em {
  font-style: italic;
  color: var(--terra);
}

.hero-text p {
  font-size: 1.05rem; color: var(--mid);
  max-width: 480px; margin-bottom: 36px;
}

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-primary {
  display: inline-block;
  background: var(--terra); color: #fff;
  padding: 16px 36px; border-radius: 50px;
  font-weight: 600; font-size: .95rem;
  text-decoration: none;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(42,125,79,.35);
}
.btn-primary:hover {
  background: var(--terra-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(42,125,79,.45);
}

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--terra); font-weight: 600; font-size: .95rem;
  text-decoration: none;
  padding: 16px 28px; border-radius: 50px;
  border: 2px solid var(--terra-lt);
  transition: border-color .2s, background .2s;
}
.btn-secondary:hover { border-color: var(--terra); background: var(--terra-lt); }
.btn-secondary svg { width: 18px; height: 18px; flex-shrink: 0; }

.hero-stats {
  display: flex; gap: 36px; margin-top: 48px;
}
.hero-stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem; color: var(--terra);
}
.hero-stat span { font-size: .82rem; color: var(--mid); }

.hero-image {
  position: relative; z-index: 1;
  display: flex; justify-content: center;
}
.hero-image img {
  width: 100%; max-width: 480px;
  border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%;
  object-fit: cover;
  aspect-ratio: 4/5;
  box-shadow: 0 24px 60px rgba(42,125,79,.22);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

.hero-image::before {
  content: '';
  position: absolute; inset: -16px;
  border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%;
  background: var(--terra-lt);
  z-index: -1;
  animation: float 6s ease-in-out infinite;
}

/* ── SECTION BASE ── */
section { padding: 100px 5vw; }
.section-label {
  display: block; font-size: .78rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--terra); margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.25; margin-bottom: 18px;
}
.section-sub {
  font-size: 1rem; color: var(--mid); max-width: 580px;
}
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ── QUOTE BANNER ── */
#quote {
  background: var(--terra);
  padding: 60px 5vw;
  text-align: center;
}
#quote blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: #fff;
  font-style: italic;
  max-width: 760px; margin: 0 auto;
  line-height: 1.45;
}
#quote blockquote::before { content: '\201C'; }
#quote blockquote::after  { content: '\201D'; }
#quote cite {
  display: block; margin-top: 16px;
  color: rgba(255,255,255,.75);
  font-style: normal; font-size: .9rem; font-family: 'Inter', sans-serif;
}

/* ── ABOUT ── */
#about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center; gap: 80px;
  background: var(--white);
}
.about-img {
  position: relative;
}
.about-img img {
  width: 100%; border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(0,0,0,.1);
  object-fit: cover;
  aspect-ratio: 4/5;
}
.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--terra); color: #fff;
  padding: 20px 24px; border-radius: var(--radius);
  font-family: 'Playfair Display', serif;
  text-align: center; box-shadow: 0 8px 24px rgba(42,125,79,.4);
}
.about-badge strong { font-size: 2rem; display: block; }
.about-badge span { font-size: .8rem; line-height: 1.3; }

.about-content .section-title { margin-top: 8px; }
.about-crn {
  display: inline-block;
  font-size: .78rem; font-weight: 600; letter-spacing: .08em;
  color: var(--terra); margin-bottom: 20px;
}
.about-content p { color: var(--mid); margin-bottom: 20px; }

.credentials {
  display: flex; flex-direction: column; gap: 12px; margin-top: 28px;
}
.cred-item {
  display: flex; align-items: flex-start; gap: 12px;
}
.cred-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--terra-lt); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--terra); font-size: 1rem;
}
.cred-text strong { display: block; font-size: .9rem; }
.cred-text span { font-size: .82rem; color: var(--mid); }

/* ── SERVICES ── */
#services { background: var(--cream); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; margin-top: 56px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 1px solid rgba(42,125,79,.12);
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative; overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: var(--terra);
  transform: scaleX(0); transition: transform .3s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.1);
  border-color: rgba(42,125,79,.3);
}
.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  width: 56px; height: 56px;
  background: var(--terra-lt); border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 20px;
}
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; margin-bottom: 10px;
}
.service-card p { font-size: .9rem; color: var(--mid); }

/* ── HOW IT WORKS ── */
#how { background: var(--light); }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; margin-top: 60px; }
.step { text-align: center; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--terra); color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; display: flex; align-items: center;
  justify-content: center; margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(42,125,79,.4);
}
.step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step p { font-size: .88rem; color: var(--mid); }
.step-connector { display: none; }

/* ── SPORTS ── */
#sports {
  background: var(--dark);
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center; gap: 80px;
}
#sports .section-label { color: var(--terra-lt); }
#sports .section-title { color: var(--white); }
#sports .section-sub { color: rgba(255,255,255,.6); }
#sports p { color: rgba(255,255,255,.7); margin-top: 18px; }
#sports .btn-primary { margin-top: 32px; }

.sports-img img {
  width: 100%; border-radius: var(--radius);
  object-fit: cover; aspect-ratio: 4/5;
}
.sports-img { order: -1; }

/* ── TESTIMONIALS ── */
#testimonials { background: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px; margin-top: 56px;
}
.testimonial-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 32px;
  border-left: 4px solid var(--terra);
}
.stars { color: var(--terra); font-size: 1.1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card p {
  font-style: italic; color: var(--mid);
  font-size: .95rem; margin-bottom: 20px; line-height: 1.7;
}
.testimonial-card p::before { content: '\201C'; }
.testimonial-card p::after  { content: '\201D'; }
.testimonial-author strong { display: block; font-size: .9rem; }
.testimonial-author span { font-size: .82rem; color: var(--mid); }

/* ── CTA FINAL ── */
#cta {
  background: linear-gradient(135deg, var(--terra) 0%, var(--terra-dk) 100%);
  text-align: center; padding: 100px 5vw;
  position: relative; overflow: hidden;
}
#cta::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
}
#cta::after {
  content: '';
  position: absolute; bottom: -80px; left: -40px;
  width: 250px; height: 250px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
}
#cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #fff; max-width: 660px; margin: 0 auto 16px;
  line-height: 1.3;
}
#cta p { color: rgba(255,255,255,.8); margin-bottom: 40px; font-size: 1.05rem; }
#cta .btn-white {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; color: var(--terra);
  padding: 18px 44px; border-radius: 50px;
  font-weight: 700; font-size: 1rem;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
}
#cta .btn-white:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(0,0,0,.25); }
#cta .btn-white svg { width: 20px; height: 20px; }

.cta-extras {
  display: flex; justify-content: center; gap: 40px;
  margin-top: 48px; flex-wrap: wrap;
}
.cta-extra {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.8); font-size: .88rem;
}
.cta-extra svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── CONTACT ── */
#contact { background: var(--cream); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  margin-top: 60px;
}
.contact-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; margin-bottom: 28px;
}
.contact-item {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 24px;
}
.contact-item-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: var(--terra-lt); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--terra);
}
.contact-item-icon svg { width: 20px; height: 20px; }
.contact-item strong { display: block; font-size: .9rem; margin-bottom: 2px; }
.contact-item span, .contact-item a {
  font-size: .88rem; color: var(--mid);
  text-decoration: none;
}
.contact-item a:hover { color: var(--terra); }

.social-links { display: flex; gap: 12px; margin-top: 32px; }
.social-link {
  width: 44px; height: 44px;
  background: var(--terra-lt); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--terra); text-decoration: none;
  transition: background .2s, color .2s;
}
.social-link:hover { background: var(--terra); color: #fff; }
.social-link svg { width: 20px; height: 20px; }

#contact > .contact-info {
  max-width: 1100px;
  margin: 60px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

#contact > .contact-info h3 {
  flex: 0 0 100%;
}

#contact .contact-item {
  flex: 1 1 180px;
  margin-bottom: 0;
}

#contact .social-links {
  flex: 0 0 100%;
  margin-top: 0;
}

/* ── FOOTER ── */
footer {
  background: var(--dark); color: rgba(255,255,255,.5);
  text-align: center; padding: 32px 5vw;
  font-size: .82rem; line-height: 1.8;
}
footer a { color: var(--terra-lt); text-decoration: none; }
footer a:hover { color: var(--white); }

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  width: 60px; height: 60px;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  animation: pulse 3s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37,211,102,.6);
}
.whatsapp-float svg { width: 32px; height: 32px; fill: #fff; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.5); }
  50%       { box-shadow: 0 4px 32px rgba(37,211,102,.8); }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  #hero          { grid-template-columns: 1fr; text-align: center; padding-top: 100px; }
  #hero .hero-text p { max-width: 100%; }
  .hero-btns     { justify-content: center; }
  .hero-stats    { justify-content: center; }
  .hero-image    { order: -1; }
  .hero-image img { max-width: 320px; }

  #about         { grid-template-columns: 1fr; }
  .about-badge   { bottom: 12px; right: 12px; }

  #sports        { grid-template-columns: 1fr; }
  .sports-img    { order: 0; }

  #contact > .contact-info { flex-direction: column; gap: 24px; }
  #contact .contact-item   { flex: 0 0 100%; }

  .nav-links     { display: none; flex-direction: column; position: absolute;
                   top: 70px; left: 0; right: 0; background: var(--cream);
                   padding: 20px 5vw; border-bottom: 1px solid rgba(42,125,79,.15); gap: 16px; }
  .nav-links.open { display: flex; }
  .hamburger     { display: flex; }
}
